home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 02 Useful Techniques / 08 Zarozinski / src / ffllapi / FuzzyOutVariableBase.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-16  |  1.0 KB  |  34 lines

  1.  
  2. //
  3. // File:    FuzzyOutVariableBase.h
  4. //
  5. // Purpose:    The FuzzyOutVariableBase class is for output variables in a model
  6. //
  7. // Copyright ⌐ 1999-2001 Louder Than A Bomb! Software
  8. //
  9. // This file is part of the FFLL (Free Fuzzy Logic Library) project (http://ffll.sourceforge.net)
  10. // It is released under the BSD license, see http://ffll.sourceforge.net/license.txt for the full text.
  11. //
  12. #if !defined(AFX_FUZZYOUTVARIABLEBASE_H__27AAF6DA_5610_4EF9_B5A6_447EF2BD5869__INCLUDED_)
  13. #define AFX_FUZZYOUTVARIABLEBASE_H__27AAF6DA_5610_4EF9_B5A6_447EF2BD5869__INCLUDED_
  14.  
  15.  
  16. #include "FuzzyVariableBase.h"
  17.  
  18. // 
  19. // Class:    FuzzyOutVariableBase
  20. //
  21. // Class that has the output variable information. Each variable has a list of 
  22. // sets that define the membership functions for the variable.
  23. //
  24.  
  25. class FuzzyOutVariableBase : public FuzzyVariableBase  
  26. {
  27.     public:
  28.         FuzzyOutVariableBase();
  29.         virtual ~FuzzyOutVariableBase();
  30.  
  31. }; // end class FuzzyOutVariableBase
  32.  
  33. #endif // !defined(AFX_FUZZYOUTVARIABLEBASE_H__27AAF6DA_5610_4EF9_B5A6_447EF2BD5869__INCLUDED_)
  34.